@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2f3640;
}

.card {
  width: 800px;
  height: 500px;
  overflow: hidden;
  position: relative;
  background-color: aliceblue;
  border-radius: 3px;
}
.card img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  transition: 0.5s;
}
.card div {
  position: absolute;
  background-color: #333;
  left: -200px;
  width: 200px;
  height: 100%;
  padding: 8px 4px;
  transition: 0.5s;
}
.card div a {
  display: block;
  padding: 10px 20px;
  margin-bottom: 2px;
  text-decoration: none;
  color: white;
  transition: 1s ease;
}
.card div a:hover {
  background-color: #3870CD;
}
.card:hover img {
  right: -200px;
}
.card:hover div {
  left: 0;
}
